<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* liScroll styles */
.tickercontainer {
	/* the outer div with the black border */
	height: 32px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	direction: rtl;
	width: 800px;
	font-family: 'Droid Arabic Naskh', serif;
}
.tickercontainer .mask {
	/* that serves as a mask. so you get a sort of padding both left and right */
position: relative;
	left: 10px;
	top: 0px;
	overflow: hidden;
}
ul.newsticker {
	/* that's your list */
position: relative;
	left: 750px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	direction: rtl;
	font-size: 13px;
}
ul.newsticker li {
	float: left; /* important: display inline gives incorrect results when you check for elem's width */;
	margin: 0;
	padding: 0px 0px 0px 40px;
	text-align: right;
	direction: rtl;
	line-height: 30px;
	background-image:url('../wene/bullrt-1.jpg');
	background-position:left center; 
	background-repeat:no-repeat
}
ul.newsticker a {
	white-space: nowrap;
	padding: 0;
	color: #000;
	margin: 0 40px 0 0;
	font-size: 13px;
	text-decoration: none;
}
ul.newsticker a:hover {
	color: red;
}
ul.newsticker span {
	margin: 0 10px 0 0;
}
</pre></body></html>